home *** CD-ROM | disk | FTP | other *** search
/ PCBoard 15.1 Demo / PCBoard v15.1 DEMO - Clark Dev. Co (1994) - Disk 1 of 1.imd / PCBDISK.EXE / GEN / DISPLAY < prev    next >
Encoding:
Text File  |  1994-02-14  |  2.1 KB  |  47 lines

  1. @echo off
  2. rem
  3. rem To display text to the user after returning from the door, create a file
  4. rem called PCBDOOR.TXT in the node or default subdirectory.  For example,
  5. rem to display a "Sample Door" title after the door has run, use the
  6. rem following two statements which make use of DOS' redirection statements.
  7. rem
  8.       echo Sample Door >>pcbdoor.txt
  9.       echo ----------- >>pcbdoor.txt
  10. rem
  11. rem PCBoard creates four environment variables you can use in your door batch
  12. rem files to simplify your multiple node setup.  The next few statements show
  13. rem you the contents of the environment variables by adding them to the
  14. rem PCBDOOR.TXT file (which PCBoard will display after the door executes).
  15. rem
  16.       echo.
  17.       echo         Drive PCBoard ran from: %PCBDRIVE% >>pcbdoor.txt
  18.       echo  Subdirectory PCBoard ran from: %PCBDIR% >>pcbdoor.txt
  19.       echo         PCBOARD.DAT being used: %PCBDAT% >>pcbdoor.txt
  20.       echo            Current node number: %PCBNODE% >>pcbdoor.txt
  21.       echo.
  22. rem
  23. rem Notice that the environment variables are surrounded with % signs.  You
  24. rem must surround an environment variable with % signs if you want to reference
  25. rem the contents of the variable in a DOS batch file.
  26. rem
  27. rem Any paramaters that are passed to the door are stored in the PCBDOOR
  28. rem environment variable.  You can use access any environment variable in
  29. rem a batch file by surrounding it by percent (%) signs.  The following line
  30. rem will show the parameters passed by outputing them to PCBDOOR.TXT (so you
  31. rem can view them after the door runs).
  32. rem
  33.       echo Parameters passed to this door: %PCBDOOR% >>pcbdoor.txt
  34. rem
  35. rem The following four lines will make sure that the door always returns to
  36. rem PCBoard (even if the door is configured to operate via shelling).  You
  37. rem can use these four lines at the end of all of your door batch files.
  38.  
  39.       if "%INPCB%" == "Y" exit
  40.       %pcbdrive%
  41.       cd %pcbdir%
  42.       board
  43. rem
  44. rem These four statements first check to see if we shelled out to the door.
  45. rem If so, we exit back to PCBoard.  Otherwise, we change to the drive
  46. rem and subdirectory where PCBoard executed from and rerun BOARD.BAT.
  47.